home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / ezzcomm.zip / NIGHTLY.T < prev    next >
Text File  |  1991-02-16  |  1KB  |  33 lines

  1.  : EZ-ZCOMM Copyright 1991 by Roger E. Hough, All Rights Reserved.
  2.  : Licensed for use at your own risk without fee. Altered versions,
  3.  : when distributed, must be clearly marked as altered and accompanied
  4.  : by the originals.
  5.  :
  6.  :: This is a prototype script to make your nightly rounds,
  7.  :: and should be customized as appropriate for your use.
  8.  ::
  9.  :: To invoke this from a BAT file,
  10.  ::
  11.  ::     ZCOMM gosub .%%lib/nightly.t
  12.  ::
  13.  :: To invoke this from the command line or from a DVP file,
  14.  ::
  15.  ::     ZCOMM gosub .%lib/nightly.t
  16.  ::
  17.  lput "Automatic Dialing Queue Initialized as Follows:\r\n"
  18.  queue clear
  19.  :: try 'panic' between 15 and 20 minutes after the hour ever hour from 2-6:30am
  20.  queue add "if !b0200 if b0630 if !b15 if b20 call panic"
  21.  :: try 'tiny' between 20 and 25 minutes after the hour ever hour from 1:20-3:25am
  22.  queue add "if !b0120 if b0325 if !b20 if b25 call tiny"
  23.  :: try 'spec' between 10 and 15 minutes after the hour ever hour from 3:30-6:30am
  24.  : queue add "if !b0330 if b0630 if !b10 if b15 call spec"
  25.  :: try 'mchip' between 30 and 40 minutes after the hour ever hour from 2:00-7:00am
  26.  queue add "if !b0200 if b0700 if !b35 if b40 call mchip"
  27.  :: try 'mania' between 7:45 and 8:30 am
  28.  queue add "if !b0745 if b0830 call mania"
  29.  set? z0 Q;setn z0 z0+1
  30.  queue add "display stat=off;ha off;pat;ena -8g wait -F35;if !b0920 if Q<%z0 call .%lib/nightly.t"
  31.  queue list
  32.  return
  33.